home *** CD-ROM | disk | FTP | other *** search
/ Collection of Tools & Utilities / Collection of Tools and Utilities.iso / comm / asp_mdms.zip / MTV32.ASP < prev    next >
Text File  |  1989-08-01  |  4KB  |  108 lines

  1. ;*************************************************************************
  2. ;* MTV32.ASP (C) 1988 DATASTORM TECHNOLOGIES, INC.                       *
  3. ;*                                                                       *
  4. ;* An ASPECT script file for initializing the MULTITECH MULTIMODEM V32   *
  5. ;* for proper use with PROCOMM PLUS.                                     *
  6. ;*                                                                       *
  7. ;*************************************************************************
  8.  
  9. CLEAR
  10. CUROFF
  11. BOX 0 0 9 58 14
  12. ATSAY 2 2 14 "PROCOMM PLUS is designed to work efficiently with the"
  13. ATSAY 3 2 14 "MULTITECH V32 modem in all its operational modes, but"
  14. ATSAY 4 2 14 "the initial setup differs from the setup for ordinary"
  15. ATSAY 5 2 14 "non-error-correcting modems."
  16. ATSAY 7 2 14 "                 <press ENTER to continue>"
  17. WAIT1:
  18. IF NOT HITKEY
  19.    GOTO WAIT1
  20. ENDIF
  21. CLEAR
  22. BOX 0 0 17 59 14
  23. ATSAY 2 2 14 "The basic principle is that the computer-to-modem baud-"
  24. ATSAY 3 2 14 "rate is fixed at 19200 (thus your status line will"
  25. ATSAY 4 2 14 "*always* read 19200) and the modem itself adjusts to"
  26. ATSAY 5 2 14 "the actual speed of the connection."
  27. ATSAY 7 2 14 "This ASPECT file sends to the modem all the commands"
  28. ATSAY 8 2 14 "necessary for efficient automatic use of its error-"
  29. ATSAY 9 2 14 "correcting features. You only need to run it one time,"
  30. ATSAY 10 2 14 "since it tells the modem to write these settings to"
  31. ATSAY 11 2 14 "non-volatile RAM. It is also very important to follow"
  32. ATSAY 12 2 14 "*exactly* the instructions that appear on the screen"
  33. ATSAY 13 2 14 "as you run this file."
  34. ATSAY 15 2 14 "                 <press ENTER to continue>"
  35. WAIT2:
  36. IF NOT HITKEY
  37.    GOTO WAIT2
  38. ENDIF
  39. CLEAR
  40. BOX 0 0 11 61 14
  41. ATSAY 2 2 14 "The MULTITECH V32 requires some hardware setup before"
  42. ATSAY 3 2 14 "it can be used effectively with PROCOMM PLUS. On the"
  43. ATSAY 4 2 14 "modem's bank of eight dipswitches, switches 3 and 8"
  44. ATSAY 5 2 14 "should be DOWN, all the others UP. On the bank of four"
  45. ATSAY 6 2 14 "switches, only switch 2 should be UP, all the others"
  46. ATSAY 7 2 14 "should be DOWN."
  47. ATSAY 9 2 14 "                 <press ENTER to continue>"
  48. WAIT3:
  49. IF NOT HITKEY
  50.    GOTO WAIT3
  51. ENDIF
  52. CLEAR
  53. SOUND 440 50
  54. BOX 0 0 4 56 14
  55. ATSAY 2 2 14 "MULTITECH V32 modem initialization... WORKING..."
  56. SET PARITY NONE
  57. SET DATABITS 8
  58. SET STOPBITS 1
  59. SET DISPLAY OFF
  60. SET TXPACE 25
  61. TRANSMIT "AT&W1Z^M"                ; get factory defaults
  62. PAUSE 1
  63. TRANSMIT "ATB0^M"                  ; CCITT standard for answer tone
  64. PAUSE 1
  65. TRANSMIT "ATX4^M"                  ; extended result codes
  66. PAUSE 1
  67. TRANSMIT "ATS0=0^M"                ; auto answer off
  68. PAUSE 1
  69. TRANSMIT "AT$A1^M"                 ; buffer data during auto-reliable time period
  70. PAUSE 1
  71. TRANSMIT "AT&E1^M"                 ; turn on MNP Auto-Reliable Mode
  72. PAUSE 1
  73. TRANSMIT "AT&E4^M"                 ; hardware flow control
  74. PAUSE 1
  75. TRANSMIT "AT&E7^M"                 ; Xon/Xoff passed through
  76. PAUSE 1
  77. TRANSMIT "AT&E12^M"                ; pacing off
  78. PAUSE 1
  79. TRANSMIT "AT$BA0^M"                ; speed conversion on
  80. PAUSE 1
  81. ; TRANSMIT "AT&BS1^M"              ; 64 character block size (for noisy lines or to make data xfer more smooth)
  82. ; PAUSE 1
  83. TRANSMIT "AT$SB19200^M"            ; serial baud rate set to 19200
  84. PAUSE 1
  85. TRANSMIT "ATS7=60^M"               ; wait 60 seconds for CD
  86. PAUSE 1
  87. TRANSMIT "AT&W0^M"                 ; write settings to NRAM
  88. SET TXPACE 0
  89. CLEAR
  90. SET DISPLAY ON
  91. SOUND 440 50
  92. BOX 0 0 16 58 14
  93. ATSAY 2 2 14 "MULTITECH V32 modem initialization - COMPLETED!"
  94. ATSAY 4 2 14 "Your MULTITECH modem will now power up with the proper"
  95. ATSAY 5 2 14 "defaults for PROCOMM PLUS.  You should now use the"
  96. ATSAY 6 2 14 "Setup Facility (Alt-S) MODEM OPTIONS to make your"
  97. ATSAY 7 2 14 "INITIALIZATION COMMAND `"ATZ^M`" (without the quotes)."
  98. ATSAY 8 2 14 "In addition AUTOBAUD DETECT should be set to OFF and"
  99. ATSAY 9 2 14 "in TERMINAL OPTIONS Hardware Flow Control (RTS/CTS)"
  100. ATSAY 10 2 14 "should be turned ON. All dialing directory entries"
  101. ATSAY 11 2 14 "should be should be set to 19200 baud, as well as your"
  102. ATSAY 12 2 14 "Alt-P line setting. Make sure to save your changes."
  103. ATSAY 13 2 14 "One last thing: your CONNECT MESSAGES in MODEM OPTIONS"
  104. ATSAY 14 2 14 "should all read simply `"CONNECT`" (without quotes)."
  105. CURON
  106. LOCATE 17 0
  107.  
  108.